/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 14, 24, 0.85) 0%,
    rgba(8, 14, 24, 0.55) 50%,
    rgba(8, 14, 24, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px; /* space for overlay header */
  padding-bottom: 40px;
  color: #fff;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.85;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  text-transform: uppercase;
  margin: 0;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.85;
  letter-spacing: 0.08em;
}

.hero-sub {
  margin-top: 0.35rem;
  opacity: 0.9;
  max-width: 520px;
}

.hero-partners {
  gap: 0.5rem;
}

/* Full-screen offcanvas */
.site-menu.offcanvas {
  width: 100vw !important;
  border: 0;
  background: transparent; /* we'll style inner panels */
}

.site-menu .offcanvas-body,
.site-menu .offcanvas-header {
  padding: 0;
}

/* Split layout inside */
.site-menu-inner {
  height: 100vh;
  width: 100vw;
  display: grid;
  grid-template-columns: 1.05fr 1fr; /* left menu + right image */
}

/* LEFT side */
.site-menu-left {
  background: #3e4349; /* Rijks-like gray */
  color: #fff;
  padding: 28px 34px;
  display: flex;
  flex-direction: column;
}

.site-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-close {
  width: 26px;
  height: 26px;
  position: relative;
  display: inline-block;
}
.icon-close::before,
.icon-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}
.icon-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.icon-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-menu-content {
  margin-top: 56px;
}

.site-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-menu-link {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.site-menu-link:hover {
  color: #fff;
  text-decoration: underline;
}

.site-menu-divider {
  height: 1px;
  margin: 18px 0;
  background: rgba(255, 255, 255, 0.18);
}

/* Secondary column */
.site-menu-secondary-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-bottom: 14px;
}

.site-menu-secondary-link {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
}
.site-menu-secondary-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* RIGHT side image */
.site-menu-right {
  position: relative;
  background: url("https://images.unsplash.com/photo-1541961017774-22349e4a1262?auto=format&fit=crop&w=2400&q=80")
    center / cover no-repeat;
}

.site-menu-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.site-menu-right-content {
  position: absolute;
  left: 32px;
  bottom: 26px;
  right: 32px;
  color: #fff;
  z-index: 2;
}

.site-menu-right-title {
  font-weight: 800;
  letter-spacing: 0.06em;
}

.site-menu-right-sub {
  margin-top: 6px;
  opacity: 0.9;
  max-width: 520px;
}

/* Mobile: stack and hide image panel */
@media (max-width: 991.98px) {
  .site-menu-inner {
    grid-template-columns: 1fr;
  }
  .site-menu-right {
    display: none;
  }
}

.type-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.type-card-inner {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 22px;
  min-height: 140px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.type-card-inner:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
}

.type-card-title {
  font-size: 1.3rem;
  font-weight: 800;
}

.type-card-sub {
  margin-top: 10px;
  opacity: 0.85;
}
