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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #0B3D2E;
  color: #8FBC8F;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }

p {
  margin-bottom: 1rem;
  max-width: 70ch;
}

a {
  color: #DAA520;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #8FBC8F;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 61, 46, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(143, 188, 143, 0.15);
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.site-logo .accent {
  color: #DAA520;
}

.nav-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid #DAA520;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1100;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(218, 165, 32, 0.1);
  transform: scale(1.05);
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #DAA520;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.35s ease;
}

.nav-toggle .bar:nth-child(1) { top: 14px; }
.nav-toggle .bar:nth-child(2) { top: 20px; }
.nav-toggle .bar:nth-child(3) { top: 26px; }

.nav-toggle.active .bar:nth-child(1) {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}
.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0B3D2E;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.fullscreen-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fullscreen-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 500;
  color: #8FBC8F;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.fullscreen-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #DAA520;
  transition: width 0.3s ease, left 0.3s ease;
}

.fullscreen-nav a:hover {
  color: #DAA520;
  transform: scale(1.05);
}

.fullscreen-nav a:hover::after {
  width: 80%;
  left: 10%;
}

.fullscreen-nav a.active,
.fullscreen-nav a[aria-current="page"] {
  color: #DAA520;
}

.fullscreen-nav a.active::after,
.fullscreen-nav a[aria-current="page"]::after {
  width: 80%;
  left: 10%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 61, 46, 0.75) 0%, rgba(11, 61, 46, 0.85) 60%, rgba(11, 61, 46, 0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin: 0 auto 2.5rem;
  max-width: 60ch;
}

.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.9rem 2.2rem;
  border: 2px solid #DAA520;
  border-radius: 6px;
  background: transparent;
  color: #DAA520;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.btn:hover {
  background-color: #DAA520;
  color: #0B3D2E;
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(218, 165, 32, 0.35);
}

.btn:focus-visible {
  outline: 3px solid #8FBC8F;
  outline-offset: 3px;
}

.btn-primary {
  background-color: #DAA520;
  color: #0B3D2E;
}

.btn-primary:hover {
  background-color: transparent;
  color: #DAA520;
}

section {
  padding: 5rem 2rem;
  position: relative;
}

.section-divider {
  border: none;
  border-top: 1px solid rgba(143, 188, 143, 0.18);
  margin: 0;
}

.section-alt {
  background-color: #093324;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  display: inline-block;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #DAA520;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-header p {
  color: #8FBC8F;
  margin: 0.5rem auto 0;
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background-color: #093324;
  border: 1px solid rgba(143, 188, 143, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(218, 165, 32, 0.45);
}

.card-img {
  width: 100%;
  height: 220px;
  border-radius: 0;
}

.card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  color: #DAA520;
  margin-bottom: 0.6rem;
}

.card-body p {
  flex: 1;
  margin-bottom: 1.25rem;
}

.card-body .btn {
  align-self: flex-start;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.two-col img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 12px;
}

.two-col .content p {
  color: #8FBC8F;
}

.contact-block {
  background-color: #093324;
  border: 1px solid rgba(143, 188, 143, 0.15);
  border-left: 4px solid #DAA520;
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-block address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 2;
  color: #8FBC8F;
}

.contact-block address strong {
  color: #DAA520;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
}

.site-footer {
  background-color: #06251A;
  border-top: 1px solid rgba(143, 188, 143, 0.15);
  padding: 4rem 2rem 2rem;
  margin-top: 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(143, 188, 143, 0.1);
}

.footer-col h4 {
  color: #DAA520;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-col p,
.footer-col address {
  color: #8FBC8F;
  font-style: normal;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #8FBC8F;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: #DAA520;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
  color: rgba(143, 188, 143, 0.6);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

@media (max-width: 768px) {
  .site-header {
    padding: 0.9rem 1.25rem;
  }

  .site-logo {
    font-size: 1.2rem;
  }

  section {
    padding: 3.5rem 1.25rem;
  }

  .hero {
    padding: 5rem 1.25rem 3rem;
    min-height: 90vh;
  }

  .hero p {
    font-size: 1rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col img {
    min-height: 240px;
  }

  .contact-block {
    padding: 1.75rem;
  }

  .contact-block address {
    font-size: 1rem;
  }

  .footer-grid {
    gap: 2rem;
  }
}

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

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