:root {
  --olive-dark: #2f3a1f;
  --green-bright: #5e8b3d;
  --green-yellow: #b8c957;
  --pista: #a9c98b;
  --white-soft: #f8f8f2;
  --pink-dark: #b03a5b;
  --crimson: #a61e2a;
  --grey-deep: #1f1f1f;
  --grey-soft: #d6dbc8;
  --border: rgba(248, 248, 242, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: min(1180px, calc(100% - 48px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top right, rgba(184, 201, 87, 0.12), transparent 25%),
    radial-gradient(circle at 20% 10%, rgba(176, 58, 91, 0.12), transparent 20%),
    linear-gradient(180deg, #11180d, #182111 40%, #10150d 100%);
  color: var(--white-soft);
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin: 0 auto; }
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  background-image: radial-gradient(rgba(255,255,255,0.05) 0.6px, transparent 0.6px);
  background-size: 7px 7px; opacity: 0.08;
}
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; backdrop-filter: blur(14px);
  background: rgba(16, 21, 13, 0.42); border-bottom: 1px solid var(--border);
}
.brand img { height: 52px; width: auto; object-fit: contain; }
.site-nav { display: flex; gap: 22px; align-items: center; font-family: var(--font-heading); font-size: 0.93rem; }
.site-nav a { opacity: 0.9; }
.nav-cta, .btn {
  border-radius: 999px; padding: 12px 18px; transition: 0.28s ease;
}
.nav-cta { background: rgba(169, 201, 139, 0.14); border: 1px solid rgba(169, 201, 139, 0.35); }
.menu-toggle { display: none; background: none; border: 0; color: var(--white-soft); font-size: 1.5rem; }
.hero-sequence-wrap { height: 420vh; position: relative; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: grid; place-items: center;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 8, 0.2), rgba(10, 12, 8, 0.15) 45%, rgba(10, 12, 8, 0.8));
}
.hero-content {
  position: relative; z-index: 2; padding-top: 120px; padding-bottom: 40px;
}
.eyebrow {
  font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.78rem; color: var(--green-yellow); margin-bottom: 14px;
}
.hero-content h1, h2, h3 { margin: 0 0 16px; }
.hero-content h1 {
  max-width: 780px; font-family: var(--font-display); font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: 0.92; letter-spacing: -0.03em;
}
.hero-copy {
  max-width: 620px; font-size: clamp(1rem, 1.8vw, 1.22rem); line-height: 1.65;
  color: rgba(248, 248, 242, 0.88);
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 600; }
.btn-primary { background: linear-gradient(135deg, var(--green-yellow), var(--green-bright)); color: #10150d; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(184, 201, 87, 0.22); }
.btn-secondary { border: 1px solid rgba(248,248,242,0.22); background: rgba(248,248,242,0.06); }
.btn-secondary:hover { background: rgba(248,248,242,0.12); }
.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; font-size: 0.88rem; font-family: var(--font-heading); opacity: 0.8;
}
.section { padding: 96px 0; position: relative; }
.section-head { margin-bottom: 34px; }
.section-head.slim { margin-bottom: 26px; }
.section h2 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 0.98; margin-bottom: 12px;
}
.section-intro, .about-copy, .reason-card p, .testimonial-role, .video-card-copy p, .contact-meta p, .contact-form span {
  color: rgba(248,248,242,0.84); line-height: 1.7;
}
.video-grid, .why-grid, .testimonial-grid, .about-grid, .contact-grid {
  display: grid; gap: 24px;
}
.video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.video-card {
  background: rgba(248,248,242,0.04); border: 1px solid var(--border); border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow); cursor: pointer; transition: 0.3s ease;
}
.video-card:hover { transform: translateY(-6px); border-color: rgba(169,201,139,0.45); }
.video-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.video-card-copy { padding: 18px; }
.video-card-copy h3, .reason-card h3 { font-family: var(--font-heading); font-size: 1.15rem; }
.section-highlight {
  background: linear-gradient(180deg, rgba(169,201,139,0.06), rgba(166,30,42,0.05));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.reason-card, .testimonial-card, .contact-form, .about-section {
  background: rgba(248,248,242,0.035); border: 1px solid var(--border); border-radius: 24px;
}
.reason-card { padding: 24px; min-height: 210px; }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-card { padding: 24px; }
.testimonial-avatar { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; margin-bottom: 18px; }
.testimonial-card blockquote { margin: 0 0 18px; font-size: 1.02rem; line-height: 1.8; }
.testimonial-name { font-family: var(--font-heading); margin: 0; }
.about-section { margin: 0 auto; width: var(--container); padding: 0; overflow: hidden; }
.about-grid, .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
.about-grid { padding: 32px; }
.contact-grid { align-items: start; }
.contact-form { padding: 24px; display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form input, .contact-form textarea {
  background: rgba(248,248,242,0.06); border: 1px solid rgba(248,248,242,0.12); color: var(--white-soft);
  padding: 14px 16px; border-radius: 16px; font: inherit;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(184, 201, 87, 0.5); }
.site-footer { padding: 24px; text-align: center; border-top: 1px solid var(--border); color: rgba(248,248,242,0.7); }
.video-modal {
  position: fixed; inset: 0; display: none; place-items: center; z-index: 1200;
}
.video-modal.is-open { display: grid; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.78); }
.video-modal-dialog {
  position: relative; z-index: 2; width: min(1000px, calc(100% - 32px));
  background: #060806; border-radius: 22px; padding: 18px; border: 1px solid var(--border);
}
.video-modal video { width: 100%; border-radius: 14px; max-height: 76vh; background: #000; }
.video-modal-close {
  position: absolute; top: 8px; right: 8px; width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: rgba(248,248,242,0.1); color: var(--white-soft); font-size: 1.5rem; cursor: pointer;
}
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 840px) {
  .site-nav {
    display: none; position: absolute; top: 100%; right: 16px; left: 16px; flex-direction: column;
    background: rgba(16, 21, 13, 0.95); padding: 16px; border: 1px solid var(--border); border-radius: 20px;
  }
  .site-nav.is-open { display: flex; }
  .menu-toggle { display: block; }
  .video-grid, .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header { padding: 14px 16px; }
  .brand img { height: 44px; }
  .container { width: min(100%, calc(100% - 28px)); }
  .section { padding: 72px 0; }
  .hero-sequence-wrap { height: 350vh; }
  .hero-content { padding-top: 104px; font-family: var(--font-heading); font-weight: 400; font-size: 0.48rem; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .site-header { padding: 14px 16px; }
  .brand img { height: 44px; }
  .container { width: min(100%, calc(100% - 28px)); }
  .section { padding: 72px 0; }
  .hero-sequence-wrap { height: 350vh; }
  .hero-content { padding-top: 104px; font-family: var(--font-heading); font-weight: 400; font-size: 0.48rem; }
  .video-grid { grid-template-columns: 1fr; }
}
#modalVideo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}





/* Why Us — video background */
.section-highlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(169,201,139,0.06), rgba(166,30,42,0.05));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

.why-us-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.why-us-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 13, 0.82);
  z-index: 1;
}
.section-highlight > .container {
  position: relative;
  z-index: 2;
}
