:root {
  --bg-light: #f5f4ef;
  --bg-section: #e7ecdf;
  --green-dark: #1f3b2e;
  --green-mid: #375b44;
  --accent-earth: #b28a5c;
  --text-main: #1c1c1c;
}

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

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

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

/* HEADER */

header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
  padding: 24px 16px 48px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  width: 72px;
  height: auto;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-phone {
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #f6f3e8;
}

.hero-bullets {
  font-size: 0.95rem;
  color: #f2e5cd;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* BUTTONS */

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.btn-primary {
  background: var(--accent-earth);
  color: #fff;
}

.btn-outline {
  border: 1px solid #ffffff90;
  color: #fff;
  background: transparent;
}

.full-btn {
  width: 100%;
}

/* HERO CARD */

.hero-card {
  background: #f5f4ef;
  color: var(--text-main);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hero-card p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.small {
  font-size: 0.8rem;
  color: #666;
}

/* SECTIONS */

.section {
  padding: 48px 16px;
}

.section-alt {
  background: var(--bg-section);
}

.section-title {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.section-title.left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 32px;
  color: #555;
}

.section-subtitle.left {
  text-align: left;
}

/* SERVICES GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.card p {
  font-size: 0.9rem;
  color: #555;
}

/* TWO COLUMNS */

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
  gap: 28px;
  align-items: flex-start;
}

.why-list {
  margin-left: 18px;
  font-size: 0.9rem;
}

/* PILL LIST */

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding: 0;
}

.pill-list li {
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  border: 1px solid #dedede;
}

/* GALLERY */

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

.gallery-item {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px dashed #c0c0c0;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

/* FORM */

form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
}

input,
select,
textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid #c8c8c8;
  font-family: inherit;
  font-size: 0.9rem;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.hidden {
  display: none;
}

.contact-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
}

.contact-list li {
  margin-bottom: 6px;
}

.mt8 { margin-top: 8px; }
.mt12 { margin-top: 12px; }
.mt18 { margin-top: 18px; }
.mb6 { margin-bottom: 6px; }
.mb8 { margin-bottom: 8px; }

/* FOOTER */

footer {
  background: var(--green-dark);
  color: #ddd;
  padding: 20px 16px;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

/* RESPONSIVE */

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

  .two-cols {
    grid-template-columns: 1fr;
  }

  .nav-phone {
    text-align: left;
  }
}



/* ANIMATIONS & INTERACTIONS */

html {
  scroll-behavior: smooth;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.btn-outline:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.card,
.hero-card,
.gallery-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.hero-card:hover,
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}



/* STRONGER ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover,
.hero-card:hover,
.gallery-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.gallery-item img:hover {
  transform: scale(1.08);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}



/* VIDEO SECTION STYLING */

.video-section {
  padding-top: 32px;
  padding-bottom: 52px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 10px;
}

.video-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px 16px 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.video-frame {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .video-section {
    padding-top: 28px;
    padding-bottom: 40px;
  }
}
