:root {
  --green-main: #82ac69;
  --green-light: #9fd579;
  --bg-black: #050608;
  --text-white: #ffffff;
  --text-muted: #d0d0d0;
  --border-soft: rgba(255, 255, 255, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --max-width: 1100px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: var(--text-white);
  background: radial-gradient(circle at top left, #111 0, var(--bg-black) 40%, #000 100%);
  scroll-behavior: smooth;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.glass {
  background: var(--glass-bg);
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.6rem 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(18px);
}

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

.logo-img {
  height: 40px;
}

/* Nav */
.main-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.2rem;
  opacity: 0.9;
  transition: opacity 0.2s ease-out;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  transition: width 0.2s ease-out;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  opacity: 1;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: blur(1.5px);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(130, 172, 105, 0.35), rgba(0, 0, 0, 0.9));
}

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

.hero-card {
  max-width: 540px;
  padding: 2.2rem 2rem;
}

.hero-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.hero p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  border-radius: 999px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  color: #000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}

.full-width {
  width: 100%;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-dark {
  background: rgba(0, 0, 0, 0.6);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.section-lead {
  margin-bottom: 2.2rem;
  max-width: 560px;
  color: var(--text-muted);
}

/* Layout grids */
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.card-grid,
.gallery-grid,
.review-grid {
  display: grid;
  gap: 1.3rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.review-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Cards & gallery */
.card {
  padding: 1.6rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(130, 172, 105, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6);
  border-color: rgba(130, 172, 105, 0.4);
  background: rgba(0, 0, 0, 0.72);
}

.card:hover::before {
  opacity: 1;
}

.gallery-img {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  object-fit: cover;
}

.gallery-item {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6);
  border-color: rgba(130, 172, 105, 0.4);
}

/* About section */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
}

.feature-list li {
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
}

.about-card {
  padding: 1.5rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.about-card h3 {
  margin: 0.4rem 0 0.2rem;
}

.about-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-stats li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.about-stats span {
  font-weight: 600;
  color: var(--text-white);
  margin-right: 0.4rem;
}

/* Reviews */
.review-text {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info h2 {
  margin-top: 0;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  color: var(--text-muted);
}

.contact-points li {
  margin-bottom: 0.4rem;
}

.contact-form {
  padding: 2rem;
}

.form-row {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(130, 172, 105, 0.7);
  box-shadow: 0 0 0 1px rgba(130, 172, 105, 0.3);
}

textarea {
  resize: vertical;
}

.form-status {
  font-size: 0.85rem;
  margin-top: 0.6rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background: #000;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Scroll reveal */
.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-card {
    padding: 1.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 60px 1rem auto 1rem;
    padding: 1rem 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.97);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.8);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .hero-meta {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }

  .hero-actions {
    flex-direction: column;
  }

  .card,
  .about-card,
  .contact-form {
    padding: 1.4rem 1.2rem;
  }
}
