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

:root {
  --black:   #000000;
  --white:   #ffffff;
  --green:   #b4f370;
  --nav-h:   60px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  position: relative;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: var(--black);
  z-index: 10;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo-img {
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 6px;
}

.ham-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--white);
  transition: opacity 0.2s var(--ease);
}

.ham-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--white);
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.2s var(--ease);
}

.hamburger:hover .ham-line,
.hamburger:hover .ham-label { opacity: 0.6; }

/* ─────────────────────────────────────────
   MENU OVERLAY
───────────────────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-overlay.open .nav-link {
  animation: slideIn 0.4s var(--ease) both;
}
.menu-overlay.open .nav-link:nth-child(1) { animation-delay: 0.05s; }
.menu-overlay.open .nav-link:nth-child(2) { animation-delay: 0.12s; }
.menu-overlay.open .nav-link:nth-child(3) { animation-delay: 0.19s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.close-btn {
  position: absolute;
  top: 18px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 8px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.close-btn:hover { opacity: 1; }

.overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: color 0.2s;
}

.nav-link::before {
  content: attr(data-num);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.nav-link:hover { color: var(--green); }

/* ─────────────────────────────────────────
   HERO LOAD ANIMATIONS
───────────────────────────────────────── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-heading {
  animation: heroIn 1s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.get-started-btn {
  animation: heroIn 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ─────────────────────────────────────────
   SCROLL FADE-UP (reusable)
───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.fade-up.delay-1 { transition-delay: 0.10s; }
.fade-up.delay-2 { transition-delay: 0.22s; }
.fade-up.delay-3 { transition-delay: 0.34s; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
}

.hero-top {
  background: var(--black);
  padding: 80px 28px 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.hero-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-heading .accent { color: var(--green); }

.get-started-btn {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1.5px solid var(--green);
  border-radius: 100px;
  background: var(--green);
  color: var(--black);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.get-started-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
}

.hero-video-wrap {
  flex: 1;
  overflow: hidden;
  min-height: 320px;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─────────────────────────────────────────
   SCROLL-HIGHLIGHT TEXT
───────────────────────────────────────── */
.scroll-text-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  background: var(--white);
}

.scroll-text {
  max-width: 700px;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.65;
  color: var(--black);
}

/* Faint state — matches screenshot (~30% opacity, still readable) */
.scroll-text .word {
  display: inline;
  opacity: 0.28;
  transition: opacity 0.25s ease;
}

.scroll-text .word.lit { opacity: 1; }

/* ─────────────────────────────────────────
   SERVICES — OUR GROWTH ENGINES
───────────────────────────────────────── */
.services-section {
  background: var(--white);
  color: var(--black);
  padding-bottom: 90px;
}

.services-inner {
  padding: 60px 28px 0;
}

.services-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Card base */
.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  background-color: #1a1a1a;   /* fallback until image loads */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.service-card:hover { transform: translateY(-5px); }

/* Dark overlay — sits between the photo and the text */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.25) 100%
  );
  pointer-events: none;
}

.card-body {
  position: relative;
  z-index: 1;
  padding: 26px 22px;
  color: var(--white);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.card-arrow {
  display: inline-block;
  font-size: 0.9em;
  opacity: 0.75;
}

.card-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.88;
}

/* ─────────────────────────────────────────
   OUR WORK
───────────────────────────────────────── */
.work-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 28px 90px;
}

.work-inner { max-width: 1100px; margin: 0 auto; }

.work-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.work-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
}

.see-all-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.see-all-link:hover { opacity: 1; }

.see-all-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  font-size: 0.8rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.work-card {
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.work-card:hover { transform: translateY(-4px); }

.work-card-img {
  width: 100%;
  padding-top: 66%;         /* 3:2 aspect */
  background: center/cover no-repeat #222;
}

.work-card-info {
  padding: 16px 18px 20px;
}

.work-tag {
  display: inline-block;
  font-size: 0.7rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
}

.work-card-title {
  font-size: 1rem;
  font-weight: 600;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 28px 110px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}

.contact-sub {
  font-size: 0.88rem;
  opacity: 0.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.6;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 10px 0;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

.form-group select option {
  background: #111;
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.28);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: rgba(255,255,255,0.7);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.submit-btn:hover { background: var(--white); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .hero-top {
    flex-direction: column;
    gap: 24px;
  }

  .get-started-btn {
    align-self: flex-start;
    margin-top: 0;
  }

  .scroll-text-section { padding: 40px 24px; }
  .services-inner      { padding: 40px 20px 0; }
  .work-section        { padding: 60px 20px 70px; }
  .contact-section     { padding: 60px 20px 80px; }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 28px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 60px;
  padding-bottom: 80px;
}

/* ── Footer logo "Lifts" with green dot on i ── */
.footer-logo {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── Footer columns ── */
.footer-heading {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }

.footer-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--white); }

/* ── Social icon buttons ── */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* ── Bottom bar ── */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── Footer responsive ── */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 60px;
  }
}
