/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0A0A0A;
  --off-black:  #111111;
  --dark-green: #0f2e12;
  --mid-green:  #1a4520;
  --gold:       #D4941A;
  --gold-light: #EFBF04;
  --gold-pale:  #f5e199;
  --white:      #ffffff;
  --cream:      #f8f6f0;
  --text-muted: #666;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--white);
  color: var(--dark-green);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

h1, h2, h3 { margin: 0 0 0.5em; }

/* ── HEADER / NAV ─────────────────────────────────────────── */
header {
  background-color: var(--dark-green);
  color: var(--white);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-links ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.logo-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo-img {
  max-height: 110px;
  width: auto;
  transition: transform 0.2s ease;
}

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

.contact-info {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  text-align: right;
}

.contact-info a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
}

.contact-info a:hover { color: var(--white); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--mid-green) 60%, #0a1f0c 100%);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(212,148,26,0.04) 0px, rgba(212,148,26,0.04) 1px, transparent 1px, transparent 14px),
    repeating-linear-gradient(-45deg, rgba(212,148,26,0.04) 0px, rgba(212,148,26,0.04) 1px, transparent 1px, transparent 14px);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.hero h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,148,26,0.2);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-green);
  padding: 0.85rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── CAROUSEL ─────────────────────────────────────────────── */
.carousel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 4px solid var(--dark-green);
  border-radius: 10px;
  box-sizing: border-box;
  background-color: var(--dark-green);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease-in-out;
}

.carousel-slide.active { opacity: 1; z-index: 1; }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--white);
  background: rgba(15,46,18,0.65);
  border: 2px solid rgba(212,148,26,0.4);
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.carousel-arrow.left  { left: 1rem; }
.carousel-arrow.right { right: 1rem; }
.carousel-arrow:hover { background: rgba(15,46,18,0.9); border-color: var(--gold); }

/* ── ABOUT ────────────────────────────────────────────────── */
.about {
  padding: 4rem 0;
  background: var(--white);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-text { flex: 1; min-width: 280px; }

.about-text h2 {
  color: var(--dark-green);
  font-size: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.about-text p {
  color: #444;
  line-height: 1.75;
  font-size: 1rem;
}

.about-image { flex: 1; min-width: 280px; }

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 24px rgba(15,46,18,0.18);
  border: 3px solid var(--dark-green);
}

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services-section {
  padding: 4rem 0;
  background: var(--cream);
}

.services-section > .container > h2 {
  text-align: center;
  color: var(--dark-green);
  font-size: 2rem;
  margin-bottom: 0.4rem;
  position: relative;
  display: inline-block;
}

.services-section > .container > .section-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 0.4rem;
}

.services-title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-title-wrap h2 {
  color: var(--dark-green);
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.services-title-wrap h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 50px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
  text-align: left;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
  border-left: 5px solid var(--dark-green);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-row:hover {
  box-shadow: 0 8px 28px rgba(15,46,18,0.16);
  border-left-color: var(--gold);
}

.service-row.reverse { flex-direction: row-reverse; border-left: none; border-right: 5px solid var(--dark-green); }
.service-row.reverse:hover { border-right-color: var(--gold); }

.service-text { flex: 1; padding: 2rem 1.75rem; min-width: 240px; }

.service-text h3 {
  color: var(--dark-green);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.service-text p {
  color: #555;
  line-height: 1.7;
  font-size: 0.97rem;
}

.service-image { flex: 1; min-width: 240px; }

.service-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery {
  padding: 4rem 0;
  background: var(--cream);
}

.gallery-title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-title-wrap h2 {
  color: var(--dark-green);
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.gallery-title-wrap h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 50px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

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

.gallery-card {
  background: var(--dark-green);
  color: var(--gold-light);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  border: 2px solid rgba(212,148,26,0.15);
  transition: border-color 0.2s, transform 0.2s;
}

.gallery-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.gallery-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.mini-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.mini-carousel img {
  display: none;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.mini-carousel img.active { display: block; }

.mini-carousel .left-arrow,
.mini-carousel .right-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--white);
  background: rgba(0,0,0,0.35);
  border: none;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  z-index: 1;
  border-radius: 5px;
  transition: background 0.2s;
}

.mini-carousel .left-arrow:hover,
.mini-carousel .right-arrow:hover { background: rgba(0,0,0,0.7); }

.mini-carousel .left-arrow  { left: 8px; }
.mini-carousel .right-arrow { right: 8px; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.themed-contact {
  background: #eef4ef;
  padding: 4rem 1rem;
  border-top: 4px solid var(--dark-green);
  border-bottom: 4px solid var(--dark-green);
}

.contact-form-container {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--dark-green);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 24px rgba(15,46,18,0.1);
}

.contact-form-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--dark-green);
  font-size: 1.75rem;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 0.97rem;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
  border-color: var(--dark-green);
  outline: none;
}

.contact-form-container button {
  background: var(--dark-green);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s;
  width: 100%;
  letter-spacing: 0.04em;
}

.contact-form-container button:hover { background: var(--mid-green); }

/* ── CONTACT INFO STRIP ───────────────────────────────────── */
.contact {
  background: var(--dark-green);
  color: var(--white);
  text-align: center;
  padding: 2.5rem 0;
}

.contact h2 {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.contact p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.8;
}

.contact a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
}

.contact a:hover { color: var(--white); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #050e06;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 1.25rem 0;
  font-size: 0.88rem;
  border-top: 2px solid rgba(212,148,26,0.2);
}

footer a {
  color: var(--gold-light);
  text-decoration: none;
}

footer a:hover { color: var(--white); }

.creator-link { color: var(--gold-light); }

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .nav-links { order: 1; }

  .nav-links ul {
    flex-direction: row;
    gap: 1rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-center { order: 2; margin: 0.5rem 0; }

  .logo-img { max-height: 80px; }

  .contact-info {
    order: 3;
    font-size: 0.82rem;
    text-align: center;
  }

  .hero { padding: 3rem 0 2rem; }

  .hero-stats { gap: 1.5rem; }

  .carousel { padding: 0 0.75rem; }

  .about-container,
  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

  .service-row { border-left: none; border-top: 5px solid var(--dark-green); }
  .service-row.reverse { border-right: none; border-top: 5px solid var(--dark-green); }
  .service-row:hover { border-top-color: var(--gold); border-left: none; border-right: none; }
  .service-row.reverse:hover { border-top-color: var(--gold); }

  .service-image img { height: 200px; }

  .gallery-grid { grid-template-columns: 1fr; }

  .contact-form-container { padding: 1.5rem 1rem; }
}
