/* Outdoor Legacy — Static Site Styles */
/* Design: #1a4a10 green, #c9a227 gold, #f9f8f3 cream, #1a1a1a dark */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #f9f8f3;
  color: #1a1a1a;
  min-height: 100vh;
}

/* Typography utilities */
.font-display {
  font-family: 'Cormorant Garamond', serif;
}

.font-body {
  font-family: 'DM Sans', sans-serif;
}

.font-stats {
  font-family: 'Bebas Neue', sans-serif;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #1a4a10;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #143a0c;
  transform: translateY(-1px);
}

.btn-primary.gold {
  background-color: #b8891f;
}

.btn-primary.gold:hover {
  background-color: #a07318;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: #1a4a10;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: 2px solid #1a4a10;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  background-color: #1a4a10;
  color: #fff;
}

/* Label tag */
.label-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.3s, box-shadow 0.3s;
  background-color: transparent;
}

#navbar.scrolled {
  background-color: rgba(26, 74, 16, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .nav-inner {
    height: 5rem;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo-text span {
  color: #c9a227;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
  padding: 0;
}

.nav-dropdown > button:hover {
  color: #fff;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  margin-top: 0.5rem;
  width: 16rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  color: #374151;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
  border-bottom: 1px solid #f3f4f6;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: #f9f8f3;
  color: #1a4a10;
}

.dot-gold {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #c9a227;
  flex-shrink: 0;
}

.dot-green {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #056321;
  flex-shrink: 0;
}

.nav-right {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav-right {
    display: flex;
  }
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-phone:hover {
  color: #fff;
}

/* Mobile menu button */
.nav-mobile-btn {
  display: flex;
  background: none;
  border: none;
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.nav-mobile-btn:hover {
  background-color: rgba(255,255,255,0.1);
}

@media (min-width: 1024px) {
  .nav-mobile-btn {
    display: none;
  }
}

/* Mobile menu */
#mobile-menu {
  display: none;
  background-color: rgba(26, 74, 16, 0.97);
  padding: 1rem 1.5rem 1.5rem;
}

#mobile-menu.open {
  display: block;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-links a {
  display: block;
  padding: 0.75rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}

.mobile-menu-links a:hover {
  color: #c9a227;
}

.mobile-menu-phone {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('images/header.png');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.hero-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  margin-bottom: 1rem;
}

.hero-title em {
  display: block;
  font-style: italic;
  color: #c9a227;
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Hero cards grid */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.hero-card-img {
  position: relative;
  height: 13rem;
  overflow: hidden;
}

.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hero-card:hover .hero-card-img img {
  transform: scale(1.05);
}

.hero-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.hero-card-body {
  padding: 1.5rem;
  text-align: center;
}

.hero-card-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.hero-card-label.gold {
  color: #c9a227;
}

.hero-card-label.green {
  color: #056321;
}

.hero-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-card p {
  font-family: 'DM Sans', sans-serif;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.hero-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ===== STATS SECTION ===== */
#stats {
  background-color: #1a4a10;
  padding: 3.5rem 0;
}

.stats-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1rem;
}

@media (min-width: 1024px) {
  .stats-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== ABOUT SECTION ===== */
#about {
  background-color: #f9f8f3;
  padding: 6rem 0;
}

.about-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #056321;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1a4a10;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-family: 'DM Sans', sans-serif;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-card {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.about-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.about-card-img {
  position: relative;
  height: 16rem;
  overflow: hidden;
  flex-shrink: 0;
}

.about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-card:hover .about-card-img img {
  transform: scale(1.05);
}

.about-card-img-overlay {
  position: absolute;
  inset: 0;
}

.about-card-img-overlay.dark {
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
}

.about-card-img-overlay.green {
  background: linear-gradient(to top, rgba(26, 74, 16, 0.8), transparent);
}

.about-card-title-wrap {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
}

.about-card-title-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.about-card-body {
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-card-body p {
  font-family: 'DM Sans', sans-serif;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: #4b5563;
}

.service-check {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
}

/* ===== FEATURES SECTION ===== */
#features {
  padding: 6rem 0;
  background-color: #c9a227;
}

.features-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.features-header .section-label {
  color: rgba(255,255,255,0.8);
}

.features-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.feature-card-img {
  position: relative;
  height: 11rem;
  overflow: hidden;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.feature-card:hover .feature-card-img img {
  transform: scale(1.05);
}

.feature-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.feature-card-body {
  padding: 1.25rem;
}

.feature-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a4a10;
  margin-bottom: 0.375rem;
}

.feature-card-body p {
  font-family: 'DM Sans', sans-serif;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
#contact {
  background-color: #f9f8f3;
  padding: 5rem 0;
}

.cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.cta-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #056321;
  margin-bottom: 1rem;
  display: block;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a4a10;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.cta-desc {
  font-family: 'DM Sans', sans-serif;
  color: #4b5563;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-buttons .btn-primary {
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

/* ===== LANDSCAPING SECTION ===== */
#landscaping {
  background-color: #fff;
  padding: 5rem 0;
}

/* ===== FOOTER ===== */
footer {
  background-color: #1a1a1a;
  color: #fff;
}

.footer-main {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.footer-brand {
  /* spans 2 cols on lg */
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  display: block;
  text-decoration: none;
}

.footer-logo-text span {
  color: #c9a227;
}

.footer-desc {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 22rem;
  margin-bottom: 1.5rem;
}

.footer-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: #c9a227;
  color: #c9a227;
}

.footer-stars span {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-contact a,
.footer-contact-addr {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact svg,
.footer-contact-addr svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #056321;
  transition: color 0.2s;
  margin-top: 0.125rem;
}

.footer-contact a:hover svg {
  color: #c9a227;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col ul a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
  }
}

.footer-bottom-inner p {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

.footer-licensed {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

.dot-sm-green {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #056321;
  display: inline-block;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.fade-delay-1 { transition-delay: 80ms; }
.fade-delay-2 { transition-delay: 160ms; }
.fade-delay-3 { transition-delay: 240ms; }
.fade-delay-4 { transition-delay: 320ms; }
.fade-delay-5 { transition-delay: 400ms; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* SVG icon helper */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
