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

    :root {
      --navy: #0d1b2a;
      --black: #000000;
      --white: #ffffff;
      --amber: #f5a623;
      --amber-dark: #d4891a;
      --overlay-start: rgba(10, 18, 28, 0.72);
      --overlay-end: rgba(10, 18, 28, 0.45);
    }

    html, body {
        margin: 0;
        padding: 0;
      height: 100%;
      width: 100vw;
      font-family: 'aventamedium', sans-serif;
      background-color: var(--navy);
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 48px;
      background: transparent;
      transition: padding 0.35s ease, background 0.35s ease;
    }

    nav.scrolled {
      padding: 12px 48px;
      background: var(--navy);
    }

    .logo img {
      height: 60px;
      width: auto;
      display: block;
      transition: height 0.35s ease;
    }

    nav.scrolled .logo img {
      height: 40px;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      color: var(--white);
      text-decoration: none;
      font-family: 'aventablack', sans-serif;
      font-weight: 400;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.85;
      transition: opacity 0.2s;
    }

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

    /* ── HERO ── */
    .hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

  

    .slide {
  position: absolute;
  inset: 0;
  background-image: url('herobackground2.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--navy);
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slide1{
  background-image: url('herobackground.jpg')
}

.slide2{
  background-image: url('herobackground2.jpg')
}

.slide.active{
  opacity: 1;
}

    /* Directional overlay — darker bottom-left, lighter top-right */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(10, 18, 28, 0.80) 0%,
        rgba(10, 18, 28, 0.60) 40%,
        rgba(10, 18, 28, 0.30) 100%
      );
    }

    /* Subtle amber accent line — the signature element */
    .hero-accent {
      display: none;
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--amber) 0%, transparent 60%);
    }

    .hero-content {
      position: relative;
      z-index: 10;
      padding: 0 48px 96px;
      max-width: 800px;
    }

    /* Eyebrow line above the heading */
    .hero-eyebrow {
      display: block;
      font-family: 'aventamedium', sans-serif;
      font-weight: 300;
      font-size: 1rem;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 16px;
    }

    /* Split headline: light weight / black weight */
    .hero-headline {
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 40px;
      display: block;
      font-size: clamp(1.5rem, 3vw, 2rem)
    }

    .hero-headline .black {
        display: block;
        font-family: 'aventablack', sans-serif;
    } 

    .hero-headline .medium {
        display: block;
        font-family: 'aventamedium', sans-serif;
    }


    .hero-sub {
      font-family: 'aventamedium', sans-serif;
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255, 255, 255, 0.75);
      max-width: 480px;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    /* CTA Button */
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--navy);
      color: var(--white);
      font-family: 'aventablack', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 18px 36px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      /* sharp corners — stamp aesthetic */
    }

    .cta-btn svg {
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .cta-btn:hover {
      background: var(--amber-dark);
      transform: translateY(-2px);
    }

    .cta-btn:hover svg {
      transform: translateX(4px);
    }

    /* ── CTA GROUP ── */
    .cta-group {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    /* WhatsApp circular button */
    .cta-whatsapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      flex-shrink: 0;
      text-decoration: none;
    }

    .cta-whatsapp:hover {
      background: var(--amber-dark);
      transform: translateY(-2px);
    }

    @media (max-width: 480px) {
      .cta-group {
        flex-direction: row;
        align-items: center;
      }

      .cta-btn {
        flex: 1;
      }
    }

    /* ── MOBILE NAV TOGGLE ── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--white);
      transition: all 0.2s;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav {
        padding: 20px 24px;
      }

      nav.scrolled {
        padding: 10px 24px;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 18, 28, 0.96);
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links li a {
        display: block;
        padding: 14px 24px;
        font-size: 1rem;
      }

      .hero-content {
        padding: 0 24px 64px;
      }

      .logo img {
        height: 60px;
      }
    }

    @media (max-width: 480px) {
      .hero-content {
        padding: 0 20px 56px;
      }

      .cta-btn {
        width: 100%;
        justify-content: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .cta-btn, .cta-btn svg, .nav-links a {
        transition: none;
      }
    }

    /* ── SERVICES ── */
.services {
  background-color: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px 48px;
  box-sizing: border-box;
}

.services-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.services-eyebrow {
  display: block;
  font-family: 'aventamedium', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}

.services-heading {
  font-family: 'aventablack', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 56px;
  line-height: 1.1;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 28px;
  transition: border-color 0.2s, background 0.2s;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--amber);
}

.service-icon {
  color: var(--amber);
  margin-bottom: 20px;
}

.service-title {
  font-family: 'aventablack', sans-serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-family: 'aventamedium', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services {
    padding: 72px 24px;
  }
}

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

  .services {
    padding: 64px 20px;
  }
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: 'aventamedium', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--amber);
}

.footer-col-heading {
  font-family: 'aventablack', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 24px;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a {
  font-family: 'aventamedium', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact address {
  font-family: 'aventamedium', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0;
}

.footer-bottom p {
  font-family: 'aventamedium', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .footer {
    padding: 56px 24px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 48px 20px 0;
  }
}