:root {
  --honey: #8f5b12;
  --deep-honey: #9f6414;
  --forest: #35583a;
  --earth: #33291f;
  --cream: #fbf7ed;
  --white: #ffffff;
  --soft-gold: #f3dfac;
  --border: #eadcc1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--earth);
  background: var(--cream);
  line-height: 1.65;
}

/* ===========================
   Navigation
=========================== */

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--soft-gold);
  color: var(--earth);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

nav {
  background: var(--earth);
  text-align: center;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem 1.4rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--soft-gold);
}

nav a[aria-current="page"] {
  background: rgba(243, 223, 172, 0.12);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--soft-gold);
  outline-offset: 4px;
}

/* ===========================
   Typography
=========================== */

.eyebrow {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--forest);
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.section-kicker {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: var(--deep-honey);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--forest);
  margin: 0 0 1rem;
}

/* ===========================
   Buttons
=========================== */

.button-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 215px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-align: center;

  position: relative;
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;

  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.button:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.button-primary {
  background: var(--honey);
  color: white;
}

.button-primary:hover {
  background: var(--deep-honey);
}

.button-secondary {
  border: 2px solid var(--forest);
  color: var(--forest);
  background: transparent;
}

.button-secondary:hover {
  background: var(--forest);
  color: white;
}

.hero-button {
  border-color: white;
  color: white;
}

.hero-button:hover {
  background: white;
  color: var(--forest);
}

/* ===========================
   Shared Sections
=========================== */

section {
  max-width: 1120px;
  margin: auto;
  padding: 4rem 1.5rem;
}

/* ===========================
   Footer
=========================== */

footer {
  background:
    linear-gradient(rgba(51, 41, 31, 0.96), rgba(51, 41, 31, 0.96)),
    radial-gradient(circle at top, rgba(200, 137, 31, 0.18), transparent 45%);
  color: white;
  text-align: center;
  padding: 4rem 1rem;
  border-top: 4px solid var(--honey);

  display: flex;
  flex-direction: column;
  align-items: center;
}

footer img {
  width: 120px;
  max-width: min(120px, 45vw);
  height: auto;
  margin-bottom: 1rem;
  transition: transform 0.25s ease;
}

footer img:hover {
  transform: scale(1.05);
}

.footer-title {
  margin: 0.5rem 0;
  color: white;
  font-size: 1.35rem;
  text-align: center;
}

footer p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.footer-mission {
  max-width: 700px;
  margin: 1rem auto 2rem;
  text-align: center;
}

.footer-links,
.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  margin: 0.4rem auto;
}

.footer-links a,
.footer-social a {
  color: #f0d8a0;
  text-decoration: none;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fff6df;
  background: rgba(243, 223, 172, 0.12);
  transform: translateY(-2px);
}

.footer-privacy {
  margin: 0.6rem auto 0;
}

.footer-privacy a {
  color: #f0d8a0;
  text-decoration: none;
  font-weight: 600;
}

.footer-privacy a:hover {
  color: #fff6df;
}

footer a[href^="mailto"] {
  color: #f0d8a0;
}

footer a[href^="mailto"]:hover {
  color: #fff6df;
}

#copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.78;
}

/* ===========================
   Mobile
=========================== */

@media (max-width: 850px) {
  nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  nav a {
    display: block;
  }

  .button {
    width: 100%;
    max-width: 320px;
  }

  .footer-links,
  .footer-social {
    flex-direction: column;
    gap: 0.65rem;
  }

  .footer-links a,
  .footer-social a {
    width: 100%;
    max-width: 260px;
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  video {
    animation: none !important;
  }

  .hero-video,
  .contact-video,
  .colony-video {
    display: none;
  }
}
